home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / PGM_TOOL / SMP_PT / LOWCOLOR.PAS < prev    next >
Pascal/Delphi Source File  |  1995-04-02  |  375b  |  19 lines

  1. {Comments:
  2.  
  3.           Low color is simple to use, just set the textbackground and
  4.           textcolor attributes, use the table I set up for you to get
  5.           a quick reference.
  6.  
  7. }
  8.  
  9. uses crt;
  10.  
  11. begin
  12.    textcolor(15);
  13.    textbackground(1);
  14.    clrscr;
  15.    writeln('Look ma, funky colors!');
  16.    readkey;
  17.    normvideo; {resets to normal video}
  18.    clrscr;
  19. end.